home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Tutorial / Cookbook / 01.hello.text_Ch6Ex1 / MyHelloClass.m < prev    next >
Text File  |  1995-06-12  |  231b  |  19 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "MyHelloClass.h"
  5. #import <stdio.h>
  6. #import <stdlib.h>
  7.  
  8. @implementation MyHelloClass
  9.  
  10. - helloAction:sender
  11. {
  12.     printf("hello, world\n");
  13.     system("date");
  14.     return self;
  15. }
  16.  
  17.  
  18. @end
  19.